//Instructions: 
//Create a function that takes a number as its only argument and returns true if it's less than or equal to zero, otherwise return false.

public class Program 
{
    public static bool LessThanOrEqualToZero(double a) 
    {
    	return (a<=0) ? true: false;
    }
}
